github.com/klauspost/compress/zstd.decodeOutput.d (field)

31 uses

	github.com/klauspost/compress/zstd (current package)
		decoder.go#L214: 	d.current.d = nil
		decoder.go#L260: 	if d.current.d != nil {
		decoder.go#L262: 			printf("re-adding current decoder %p, decoders: %d", d.current.d, len(d.decoders))
		decoder.go#L264: 		d.decoders <- d.current.d
		decoder.go#L265: 		d.current.d = nil
		decoder.go#L273: 		if v.d != nil {
		decoder.go#L275: 				printf("re-adding decoder %p", v.d)
		decoder.go#L277: 			d.decoders <- v.d
		decoder.go#L453: 	if next.d != nil && next.d.async.newHist != nil {
		decoder.go#L469: 	if next.err == nil && next.d != nil && next.d.hasCRC {
		decoder.go#L471: 		if got != next.d.checkCRC {
		decoder.go#L473: 				printf("CRC Check Failed: %08x (got) != %08x (on stream)\n", got, next.d.checkCRC)
		decoder.go#L487: 	if d.current.d == nil {
		decoder.go#L488: 		d.current.d = <-d.decoders
		decoder.go#L508: 		d.current.err = d.frame.next(d.current.d)
		decoder.go#L517: 		d.current.err = d.current.d.decodeBuf(&d.frame.history)
		decoder.go#L539: 		if d.current.d.Last && d.frame.FrameContentSize != fcsUnknown && d.syncStream.decodedFrame != d.frame.FrameContentSize {
		decoder.go#L552: 			if d.current.d.Last {
		decoder.go#L564: 		d.syncStream.inFrame = !d.current.d.Last
		decoder.go#L570: 	if d.current.d != nil {
		decoder.go#L572: 			printf("re-adding current decoder %p", d.current.d)
		decoder.go#L574: 		d.decoders <- d.current.d
		decoder.go#L575: 		d.current.d = nil
		decoder.go#L598: 	if d.current.d != nil {
		decoder.go#L599: 		d.current.d.Close()
		decoder.go#L600: 		d.current.d = nil
		decoder.go#L635: 	d   *blockDec
		decoder.go#L724: 			out := decodeOutput{err: block.err, d: block}
		decoder.go#L753: 			do := decodeOutput{err: block.err, d: block}